mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-25 05:22:13 +00:00
20 lines
640 B
Dart
20 lines
640 B
Dart
// This file is automatically generated, so please do not edit it.
|
|
// @generated by `flutter_rust_bridge`@ 2.12.0.
|
|
|
|
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
|
|
|
import 'frb_generated.dart';
|
|
import 'package:collection/collection.dart';
|
|
import 'package:flutter_rust_bridge/flutter_rust_bridge_for_generated.dart';
|
|
|
|
class U8Array32 extends NonGrowableListView<int> {
|
|
static const arraySize = 32;
|
|
|
|
@internal
|
|
Uint8List get inner => _inner;
|
|
final Uint8List _inner;
|
|
|
|
U8Array32(this._inner) : assert(_inner.length == arraySize), super(_inner);
|
|
|
|
U8Array32.init() : this(Uint8List(arraySize));
|
|
}
|