LogConfig.fromJson constructor

LogConfig.fromJson(
  1. Map<String, dynamic> json
)

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