NetworkingConfig.fromJson constructor

NetworkingConfig.fromJson(
  1. Map json_
)

Implementation

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