LogConfig.fromJson constructor
Implementation
factory LogConfig.fromJson(Map<String, dynamic> json) {
return LogConfig(
cloudWatchLogsRoleArn: json['cloudWatchLogsRoleArn'] as String,
fieldLogLevel: (json['fieldLogLevel'] as String).toFieldLogLevel(),
excludeVerboseContent: json['excludeVerboseContent'] as bool?,
);
}