toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (createTime != null) 'createTime': createTime!,
  if (description != null) 'description': description!,
  if (endpointGlobalAccess != null)
    'endpointGlobalAccess': endpointGlobalAccess!,
  if (endpointIp != null) 'endpointIp': endpointIp!,
  if (labels != null) 'labels': labels!,
  if (name != null) 'name': name!,
  if (serviceAttachment != null) 'serviceAttachment': serviceAttachment!,
  if (state != null) 'state': state!,
  if (updateTime != null) 'updateTime': updateTime!,
};