BankError constructor

BankError({
  1. required String type,
  2. required String message,
  3. Object? errors,
})

Implementation

BankError({
  required this.type,
  required this.message,
  this.errors,
});