import 'package:json_annotation/json_annotation.dart'; import 'apikey.dart'; part 'apikeys.g.dart'; @JsonSerializable() class ApiKeys { @JsonKey(name: "items", required: true) final Map apikeys; ApiKeys({required this.apikeys}); // JSON Init factory ApiKeys.fromJson(Map json) => _$ApiKeysFromJson(json); // JSON Export Map toJson() => _$ApiKeysToJson(this); }