APITestConfigDockerMySQL constructor

APITestConfigDockerMySQL(
  1. Map<String, dynamic> apiConfig, {
  2. DockerHost? dockerHost,
  3. String? containerNamePrefix,
  4. bool forceNativePasswordAuthentication = true,
})

Implementation

APITestConfigDockerMySQL(Map<String, dynamic> apiConfig,
    {DockerHost? dockerHost,
    String? containerNamePrefix,
    this.forceNativePasswordAuthentication = true})
    : super(dockerHost ?? DockerHostLocal(), 'MySQL', apiConfig,
          containerNamePrefix: containerNamePrefix) {
  DBMySQLAdapter.boot();
}