factory Position.fromJson(Map<String, dynamic> json) { return Position( line: json['line'] as int, character: json['character'] as int, ); }