mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
13 lines
219 B
Dart
13 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;
|
||
|
}
|