fromMap static method

BotCommand? fromMap(
  1. Map<String, dynamic>? _map
)
override

Construct from Map.

Implementation

static BotCommand? fromMap(Map<String, dynamic>? _map) {
  if (_map == null) return null;
  var _ = _map["@type"];
  if (_ != CONSTRUCTOR) return null;
  var extra = _map['@extra'];
  var clientId = _map['@clientId'];
  var command = _map['command']! as String;
  var description = _map['description']! as String;
  return BotCommand(
    extra: extra,
    clientId: clientId,
    command: command,
    description: description,
  );
}