cake_wallet/cw_haven/lib/api/structs/account_row.dart
2022-10-12 13:09:57 -04:00

12 lines
219 B
Dart

import 'dart:ffi';
import 'package:ffi/ffi.dart';
class AccountRow extends Struct {
@Int64()
external int id;
external Pointer<Utf8> label;
String getLabel() => label.toDartString();
int getId() => id;
}