RxFieldException<T> constructor

const RxFieldException<T>({
  1. required String error,
  2. required T fieldValue,
})

the default constructor, all members are required

Implementation

const RxFieldException({
  required this.error,
  required this.fieldValue,
});