mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-28 14:39:38 +00:00
13 lines
245 B
Dart
13 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();
|
||
|
}
|