DebugSymbols.fromJson constructor
Implementation
factory DebugSymbols.fromJson(Map<String, dynamic> json) {
return DebugSymbols(
type: DebugSymbolsType.fromJson(json['type'] as String),
externalURL: json.containsKey('externalURL')
? json['externalURL'] as String
: null,
);
}