toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (creationRecord != null) 'creationRecord': creationRecord!,
      if (description != null) 'description': description!,
      if (displayName != null) 'displayName': displayName!,
      if (enabled != null) 'enabled': enabled!,
      if (labels != null) 'labels': labels!,
      if (mutationRecords != null) 'mutationRecords': mutationRecords!,
      if (name != null) 'name': name!,
      if (type != null) 'type': type!,
      if (userLabels != null) 'userLabels': userLabels!,
      if (verificationStatus != null)
        'verificationStatus': verificationStatus!,
    };