toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final activationToken = this.activationToken;
  final createTime = this.createTime;
  final cryptoKeyName = this.cryptoKeyName;
  final labels = this.labels;
  final name = this.name;
  final provider = this.provider;
  final pubsubTopic = this.pubsubTopic;
  final satisfiesPzs = this.satisfiesPzs;
  final state = this.state;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'activationToken': ?activationToken,
    'createTime': ?createTime,
    'cryptoKeyName': ?cryptoKeyName,
    'labels': ?labels,
    'name': ?name,
    'provider': ?provider,
    'pubsubTopic': ?pubsubTopic,
    'satisfiesPzs': ?satisfiesPzs,
    'state': ?state,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}