UnknownMarkup constructor

const UnknownMarkup({
  1. required String type,
  2. required int from,
  3. required int length,
  4. required Map<String, dynamic> raw,
})

Implementation

const UnknownMarkup({
  required super.type,
  required super.from,
  required super.length,
  required this.raw,
});