fromJson static method
Implementation
static BotGateway fromJson(Map<String, dynamic> json) {
return BotGateway(
url: json['url'],
shards: json['shards'],
sessionStartLimit: SessionStartLimit.fromJson(
json['session_start_limit'],
),
);
}