ComplianceError constructor

ComplianceError({
  1. required String code,
  2. required String message,
})

Constructor for the specific error.

Parameters:

  • code: The error code.
  • message: A description of the error.

Implementation

ComplianceError({required this.code, required this.message});