LoggingConfig.fromJson constructor
LoggingConfig.fromJson(
- Map json_
Implementation
LoggingConfig.fromJson(core.Map json_)
: this(
logActionStates:
(json_['logActionStates'] as core.List?)
?.map((value) => value as core.String)
.toList(),
logActions:
(json_['logActions'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);