toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (channelType != null) 'channelType': channelType!,
if (expireTime != null) 'expireTime': expireTime!,
if (frequencyRange != null) 'frequencyRange': frequencyRange!.toJson(),
if (grantId != null) 'grantId': grantId!,
if (maxEirp != null) 'maxEirp': maxEirp!,
if (moveList != null)
'moveList': moveList!.map((value) => value.toJson()).toList(),
if (state != null) 'state': state!,
if (suspensionReason != null) 'suspensionReason': suspensionReason!,
};