DeobfuscationFile.fromJson constructor

DeobfuscationFile.fromJson(
  1. Map json_
)

Implementation

DeobfuscationFile.fromJson(core.Map json_)
    : this(
        symbolType: json_.containsKey('symbolType')
            ? json_['symbolType'] as core.String
            : null,
      );