Balance constructor

Balance(
  1. String? firstCurrencyCode,
  2. int? firstCurrencyBalance,
  3. String? secondCurrencyCode,
  4. int? secondCurrencyBalance,
)

Implementation

Balance(this.firstCurrencyCode, this.firstCurrencyBalance,
    this.secondCurrencyCode, this.secondCurrencyBalance);