toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final enableMetastoreEncryption = this.enableMetastoreEncryption;
  final encryptionState = this.encryptionState;
  final etag = this.etag;
  final failureDetails = this.failureDetails;
  final key = this.key;
  final name = this.name;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'enableMetastoreEncryption': ?enableMetastoreEncryption,
    'encryptionState': ?encryptionState,
    'etag': ?etag,
    'failureDetails': ?failureDetails,
    'key': ?key,
    'name': ?name,
    'updateTime': ?updateTime,
  };
}