InlineCommentProperties.fromJson constructor

InlineCommentProperties.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory InlineCommentProperties.fromJson(Map<String, Object?> json) {
  return InlineCommentProperties(
    inlineMarkerRef: json[r'inline-marker-ref'] as String?,
    inlineOriginalSelection: json[r'inline-original-selection'] as String?,
  );
}