Database constructor

Database({
  1. required String name,
  2. String? description,
  3. Map<String, String>? parameters,
})

Implementation

Database({
  required this.name,
  this.description,
  this.parameters,
});