toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final encryptedTableCount = this.encryptedTableCount;
  final engine = this.engine;
  final tableCount = this.tableCount;
  return {
    'encryptedTableCount': ?encryptedTableCount,
    'engine': ?engine,
    'tableCount': ?tableCount,
  };
}