fromJson static method

BotGateway fromJson(
  1. Map<String, dynamic> json
)

Implementation

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