listFromJson static method
Implementation
static List<TokenResponse?>? listFromJson(List<dynamic> json, {bool? emptyIsNull, bool? growable,}) =>
json == null || json.isEmpty
? true == emptyIsNull ? null : <TokenResponse>[]
: json.map((v) => TokenResponse.fromJson(v)).toList(growable: true == growable);