DebugSymbols.fromJson constructor

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

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