toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (clustering != null) 'clustering': clustering!,
      if (creationTime != null) 'creationTime': creationTime!,
      if (expirationTime != null) 'expirationTime': expirationTime!,
      if (friendlyName != null) 'friendlyName': friendlyName!,
      if (id != null) 'id': id!,
      if (kind != null) 'kind': kind!,
      if (labels != null) 'labels': labels!,
      if (rangePartitioning != null) 'rangePartitioning': rangePartitioning!,
      if (requirePartitionFilter != null)
        'requirePartitionFilter': requirePartitionFilter!,
      if (tableReference != null) 'tableReference': tableReference!,
      if (timePartitioning != null) 'timePartitioning': timePartitioning!,
      if (type != null) 'type': type!,
      if (view != null) 'view': view!,
    };