DeletedRadarValueList.fromJson constructor
DeletedRadarValueList.fromJson(
- Object? json
Implementation
factory DeletedRadarValueList.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return DeletedRadarValueList(id: (map['id'] as String));
}