Vm constructor

Vm({
  1. List<Object?> equals = const [],
})

The constructor takes an optional List of fields which will be used to determine whether two Vm are equal.

Implementation

Vm({this.equals = const []}) : assert(_onlyContainFieldsOfAllowedTypes(equals));