GetBalanceResponse constructor

GetBalanceResponse({
  1. required String resultType,
  2. required int balanceMsats,
  3. int? maxAmount,
  4. String? budgetRenewal,
})

Implementation

GetBalanceResponse({
  required super.resultType,
  required this.balanceMsats,
  this.maxAmount,
  this.budgetRenewal,
});