ScLoanError constructor

ScLoanError({
  1. required int code,
  2. required String message,
  3. String? data,
})

Implementation

ScLoanError({
  required this.code,
  required this.message,
  this.data,
});