RedshiftParameters constructor

RedshiftParameters({
  1. required String database,
  2. String? clusterId,
  3. String? host,
  4. int? port,
})

Implementation

RedshiftParameters({
  required this.database,
  this.clusterId,
  this.host,
  this.port,
});