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