fromJson static method

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

Implementation

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