toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotations = this.annotations;
  final customClassId = this.customClassId;
  final deleteTime = this.deleteTime;
  final displayName = this.displayName;
  final etag = this.etag;
  final expireTime = this.expireTime;
  final items = this.items;
  final kmsKeyName = this.kmsKeyName;
  final kmsKeyVersionName = this.kmsKeyVersionName;
  final name = this.name;
  final reconciling = this.reconciling;
  final state = this.state;
  final uid = this.uid;
  return {
    'annotations': ?annotations,
    'customClassId': ?customClassId,
    'deleteTime': ?deleteTime,
    'displayName': ?displayName,
    'etag': ?etag,
    'expireTime': ?expireTime,
    'items': ?items,
    'kmsKeyName': ?kmsKeyName,
    'kmsKeyVersionName': ?kmsKeyVersionName,
    'name': ?name,
    'reconciling': ?reconciling,
    'state': ?state,
    'uid': ?uid,
  };
}