AlloyDbConnectionProfile.fromJson constructor

AlloyDbConnectionProfile.fromJson(
  1. Map json_
)

Implementation

AlloyDbConnectionProfile.fromJson(core.Map json_)
    : this(
        clusterId: json_.containsKey('clusterId')
            ? json_['clusterId'] as core.String
            : null,
        settings: json_.containsKey('settings')
            ? AlloyDbSettings.fromJson(
                json_['settings'] as core.Map<core.String, core.dynamic>)
            : null,
      );