DbServer.fromJson constructor

DbServer.fromJson(
  1. Map json_
)

Implementation

DbServer.fromJson(core.Map json_)
  : this(
      displayName: json_['displayName'] as core.String?,
      name: json_['name'] as core.String?,
      properties: json_.containsKey('properties')
          ? DbServerProperties.fromJson(
              json_['properties'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );