toJson method

Map<String, dynamic> toJson()

Implementation

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