mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
01150ef2a7
* hv * Change build version
11 lines
227 B
Dart
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);
|
|
}
|