Position.fromJson constructor
Position.fromJson(
- Map json_
Implementation
Position.fromJson(core.Map json_)
: this(
column: json_['column'] as core.int?,
length: json_['length'] as core.int?,
line: json_['line'] as core.int?,
offset: json_['offset'] as core.int?,
);