Breakpoint.fromMap constructor
Implementation
Breakpoint.fromMap(Map<String, Object?> obj)
: column = obj['column'] as int?,
endColumn = obj['endColumn'] as int?,
endLine = obj['endLine'] as int?,
id = obj['id'] as int?,
instructionReference = obj['instructionReference'] as String?,
line = obj['line'] as int?,
message = obj['message'] as String?,
offset = obj['offset'] as int?,
source = obj['source'] == null
? null
: Source.fromJson(obj['source'] as Map<String, Object?>),
verified = obj['verified'] as bool;