toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final expireTime = this.expireTime;
  final hiveOptions = this.hiveOptions;
  final name = this.name;
  final type = this.type;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'expireTime': ?expireTime,
    'hiveOptions': ?hiveOptions,
    'name': ?name,
    'type': ?type,
    'updateTime': ?updateTime,
  };
}