BreakpointLocation.fromMap constructor

BreakpointLocation.fromMap(
  1. Map<String, Object?> obj
)

Implementation

BreakpointLocation.fromMap(Map<String, Object?> obj)
    : column = obj['column'] as int?,
      endColumn = obj['endColumn'] as int?,
      endLine = obj['endLine'] as int?,
      line = obj['line'] as int;