Change constructor

Change({
  1. required String entryPath,
  2. 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,
      );