ApiKeys.fromJson constructor
Implementation
factory ApiKeys.fromJson(Map<String, dynamic> json) {
return ApiKeys(
items: (json['item'] as List?)
?.whereNotNull()
.map((e) => ApiKey.fromJson(e as Map<String, dynamic>))
.toList(),
position: json['position'] as String?,
warnings: (json['warnings'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}