toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() => {
      'column': column,
      if (frameId != null) 'frameId': frameId,
      if (line != null) 'line': line,
      'text': text,
    };