TelemetryConfig.fromJson constructor

TelemetryConfig.fromJson(
  1. Map json_
)

Implementation

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