StepInTarget.fromMap constructor

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

Implementation

StepInTarget.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,
      label = obj['label'] as String,
      line = obj['line'] as int?;