toJson method
Implementation
Map<String, dynamic> toJson() => {
"satelliteCount": satelliteCount == null ? null : satelliteCount,
"hashCode": hashCodec == null ? null : hashCodec,
"status": status == null
? null
: List<dynamic>.from(status!.map((x) => x.toJson())),
};