$ClusterOperationsConfig.fromJson constructor

$ClusterOperationsConfig.fromJson(
  1. Map json_
)

Implementation

$ClusterOperationsConfig.fromJson(core.Map json_)
    : this(
        enableApplicationLogs: json_.containsKey('enableApplicationLogs')
            ? json_['enableApplicationLogs'] as core.bool
            : null,
      );