GameProperty.fromJson constructor

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

Implementation

factory GameProperty.fromJson(Map<String, dynamic> json) {
  return GameProperty(
    key: json['Key'] as String,
    value: json['Value'] as String,
  );
}