DatabaseOption constructor
DatabaseOption({})
Creates a new DatabaseOption instance.
All parameters except useSSL
are required for establishing
a database connection.
Implementation
DatabaseOption({
required this.userName,
required this.schema,
required this.password,
required this.host,
required this.port,
required this.db,
this.useSSL,
});