cake_wallet/cw_haven/lib/api/structs/haven_balance_row.dart
2022-02-21 21:11:18 +02:00

11 lines
227 B
Dart

import 'dart:ffi';
import 'package:ffi/ffi.dart';
class HavenBalanceRow extends Struct {
@Int64()
int amount;
Pointer<Utf8> assetType;
int getAmount() => amount;
String getAssetType() => Utf8.fromUtf8(assetType);
}