ConfirmableField<T, E extends BaseError> constructor

const ConfirmableField<T, E extends BaseError>({
  1. T? initialValue,
  2. T? initialOtherValue,
})

Implementation

const ConfirmableField({T? initialValue, T? initialOtherValue})
    : otherValue = initialOtherValue,
      super(initialValue: initialValue);