mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
12 lines
198 B
Dart
12 lines
198 B
Dart
|
import 'dart:ffi';
|
||
|
import 'package:ffi/ffi.dart';
|
||
|
|
||
|
class AccountRow extends Struct {
|
||
|
@Int64()
|
||
|
int id;
|
||
|
Pointer<Utf8> label;
|
||
|
|
||
|
String getLabel() => Utf8.fromUtf8(label);
|
||
|
int getId() => id;
|
||
|
}
|