Limit.fromJson constructor

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

Implementation

factory Limit.fromJson(Map<String, dynamic> json) {
  return Limit(
    max: json['Max'] as int?,
    type: json['Type'] as String?,
  );
}