copyWith method
Implementation
WalletBalance copyWith({String? isoCurrencyCode, double? current}) {
return WalletBalance(
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode,
current: current ?? this.current);
}
WalletBalance copyWith({String? isoCurrencyCode, double? current}) {
return WalletBalance(
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode,
current: current ?? this.current);
}