toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final mysql = this.mysql;
  final objects = this.objects;
  final postgresql = this.postgresql;
  final schemaName = this.schemaName;
  final sqlServer = this.sqlServer;
  final tablesSizeBytes = this.tablesSizeBytes;
  return {
    'mysql': ?mysql,
    'objects': ?objects,
    'postgresql': ?postgresql,
    'schemaName': ?schemaName,
    'sqlServer': ?sqlServer,
    'tablesSizeBytes': ?tablesSizeBytes,
  };
}