AddressNotFoundError constructor

AddressNotFoundError({
  1. String message = "ADDRESS_NOT_FOUNT_ERROR",
  2. String? code,
})

Implementation

AddressNotFoundError({final String message = "ADDRESS_NOT_FOUNT_ERROR", String? code})
    : super(message: message, code: code);