Change constructor
Change({
- required String entryPath,
- required ChangeType changeType,
Implementation
Change({
/// The path of the changed entry.
required String entryPath,
/// The type of the change which happened to the entry.
required ChangeType changeType,
}) : _wrapped = $js.Change(
entryPath: entryPath,
changeType: changeType.toJS,
);