fromJson static method
Implementation
static SessionStartLimit fromJson(Map<String, dynamic> json) {
return SessionStartLimit(
total: json['total'],
remaining: json['remaining'],
resetAfter: json['reset_after'],
maxConcurrency: json['max_concurrency'],
);
}