mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
12 lines
219 B
Dart
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;
|
|
}
|