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