ListEqualPadlock<T> constructor

ListEqualPadlock<T>({
  1. required List<T> validList,
  2. String? title = kDefaultPadlockTitle,
  3. String? unlockMessage = kDefaultPadlockUnlockMessage,
  4. String? failedToUnlockMessage = kDefaultFailedToUnlockMessage,
  5. HintBuilder? hintBuilder,
})

Creates a new ListEqualPadlock instance.

Implementation

ListEqualPadlock({
  required List<T> validList,
  super.title,
  super.unlockMessage,
  super.failedToUnlockMessage,
  super.hintBuilder,
}) : super(
        validObject: validList,
      );