getBtcBalance method
Implementation
@override
Future<BtcBalance> getBtcBalance({
required int walletId,
required bool skipSync,
}) async {
final result = await methodChannel.invokeMethod<Map>('getBtcBalance', {
'walletId': walletId,
'skipSync': skipSync,
});
return BtcBalance.fromJson(Map<String, dynamic>.from(result!));
}