BackendServiceLogConfigLoggingHttpHeader.fromJson constructor
BackendServiceLogConfigLoggingHttpHeader.fromJson(
- Object? j
Implementation
factory BackendServiceLogConfigLoggingHttpHeader.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return BackendServiceLogConfigLoggingHttpHeader(
headerName: switch (json['headerName']) {
null => null,
Object $1 => decodeString($1),
},
);
}