GetDebugConfigResponse.fromJson constructor

GetDebugConfigResponse.fromJson(
  1. Map _json
)

Implementation

GetDebugConfigResponse.fromJson(core.Map _json)
    : this(
        config: _json.containsKey('config')
            ? _json['config'] as core.String
            : null,
      );