toJson method

Map<String, dynamic> toJson()

Implementation

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