Refactor the type of `Delta().toJson()` (#1694)

pull/1710/head
Cierra_Runis 1 year ago committed by GitHub
parent 97a5ed1a1b
commit a6b94f6d5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      dart_quill_delta/lib/src/delta/delta.dart

@ -122,7 +122,8 @@ class Delta {
List<Operation> toList() => List.from(operations);
/// Returns JSON-serializable version of this delta.
List toJson() => toList().map((operation) => operation.toJson()).toList();
List<Map<String, dynamic>> toJson() =>
toList().map((operation) => operation.toJson()).toList();
/// Returns `true` if this delta is empty.
bool get isEmpty => operations.isEmpty;

Loading…
Cancel
Save