toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final dateRangeConfig = this.dateRangeConfig;
  final description = this.description;
  final displayName = this.displayName;
  final filter = this.filter;
  final name = this.name;
  final readOnly = this.readOnly;
  final rootContainer = this.rootContainer;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'dateRangeConfig': ?dateRangeConfig,
    'description': ?description,
    'displayName': ?displayName,
    'filter': ?filter,
    'name': ?name,
    'readOnly': ?readOnly,
    'rootContainer': ?rootContainer,
    'updateTime': ?updateTime,
  };
}