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,
      );