DeletedRadarValueList.fromJson constructor

DeletedRadarValueList.fromJson(
  1. Object? json
)

Implementation

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