parent
db1ad0b13f
commit
a122ee7dc3
5 changed files with 31 additions and 16 deletions
@ -0,0 +1,18 @@ |
|||||||
|
import '../../../flutter_quill.dart'; |
||||||
|
|
||||||
|
class DocChange { |
||||||
|
DocChange( |
||||||
|
this.before, |
||||||
|
this.change, |
||||||
|
this.source, |
||||||
|
); |
||||||
|
|
||||||
|
/// Document state before [change]. |
||||||
|
final Delta before; |
||||||
|
|
||||||
|
/// Change delta applied to the document. |
||||||
|
final Delta change; |
||||||
|
|
||||||
|
/// The source of this change. |
||||||
|
final ChangeSource source; |
||||||
|
} |
Loading…
Reference in new issue