Fix typo in QuillHtmlConverter (#1855)

Co-authored-by: Jonas Klock <jonas.klock@exxeta.com>
pull/1873/head
Jonas 11 months ago committed by GitHub
parent 1eb699af3e
commit 0f6b1ac1b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      quill_html_converter/lib/quill_html_converter.dart

@ -2,9 +2,9 @@ library quill_html_converter;
import 'package:dart_quill_delta/dart_quill_delta.dart';
import 'package:vsc_quill_delta_to_html/vsc_quill_delta_to_html.dart'
as conventer show ConverterOptions, QuillDeltaToHtmlConverter;
as converter show ConverterOptions, QuillDeltaToHtmlConverter;
typedef ConverterOptions = conventer.ConverterOptions;
typedef ConverterOptions = converter.ConverterOptions;
/// A extension for [Delta] which comes from `flutter_quill` to extends
/// the functionality of it to support converting the [Delta] to/from HTML
@ -19,7 +19,7 @@ extension DeltaHtmlExt on Delta {
/// that designed specifically for converting the quill delta to html
String toHtml({ConverterOptions? options}) {
final json = toJson();
final html = conventer.QuillDeltaToHtmlConverter(
final html = converter.QuillDeltaToHtmlConverter(
List.castFrom(json),
options,
).convert();

Loading…
Cancel
Save