WebServerConfig.fromJson constructor

WebServerConfig.fromJson(
  1. Map json_
)

Implementation

WebServerConfig.fromJson(core.Map json_)
    : this(
        machineType: json_.containsKey('machineType')
            ? json_['machineType'] as core.String
            : null,
      );