Int32Change constructor

Int32Change({
  1. int? previousValue,
  2. int? newValue,
})

Implementation

factory Int32Change({
  $core.int? previousValue,
  $core.int? newValue,
}) {
  final _result = create();
  if (previousValue != null) {
    _result.previousValue = previousValue;
  }
  if (newValue != null) {
    _result.newValue = newValue;
  }
  return _result;
}