toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final description = this.description;
  final displayName = this.displayName;
  final name = this.name;
  final purgeTime = this.purgeTime;
  return {
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'description': ?description,
    'displayName': ?displayName,
    'name': ?name,
    'purgeTime': ?purgeTime,
  };
}