SecureValueErrorData constructor

const SecureValueErrorData({
  1. required SecureValueTypeBase type,
  2. required Uint8List dataHash,
  3. required String field,
  4. required String text,
})

Secure Value Error Data constructor.

Implementation

const SecureValueErrorData({
  required this.type,
  required this.dataHash,
  required this.field,
  required this.text,
}) : super._();