toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final database = this.database;
  final host = this.host;
  final warehouse = this.warehouse;
  return {
    'Database': database,
    'Host': host,
    'Warehouse': warehouse,
  };
}