SqlServerProfile.fromJson constructor

SqlServerProfile.fromJson(
  1. Map json_
)

Implementation

SqlServerProfile.fromJson(core.Map json_)
    : this(
        database: json_['database'] as core.String?,
        hostname: json_['hostname'] as core.String?,
        password: json_['password'] as core.String?,
        port: json_['port'] as core.int?,
        username: json_['username'] as core.String?,
      );