cake_wallet/cw_zano/lib/api/structs/zano_balance_row.dart
2023-10-02 14:17:35 +00:00

12 lines
245 B
Dart

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