toJson method

Map<String, dynamic> toJson()

Implementation

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