InsufficientBalanceException constructor
Implementation
const InsufficientBalanceException({
required this.required,
required this.available,
}) : super(
'Insufficient balance: Required ${required} but only ${available} available',
code: 'INSUFFICIENT_BALANCE'
);