$FindingLocation.fromJson constructor

$FindingLocation.fromJson(
  1. Map json_
)

Implementation

$FindingLocation.fromJson(core.Map json_)
  : this(
      filePath: json_['filePath'] as core.String?,
      lineNumber: json_['lineNumber'] as core.String?,
    );