LogEntrySourceLocation.fromJson constructor

LogEntrySourceLocation.fromJson(
  1. Map json_
)

Implementation

LogEntrySourceLocation.fromJson(core.Map json_)
  : this(
      file: json_['file'] as core.String?,
      function: json_['function'] as core.String?,
      line: json_['line'] as core.String?,
    );