19 lines
405 B
Dart
19 lines
405 B
Dart
|
// ignore_for_file: overridden_fields
|
||
|
|
||
|
import 'package:hive/hive.dart';
|
||
|
part 'test_hive.g.dart';
|
||
|
|
||
|
@HiveType(typeId: 2)
|
||
|
class Addtestofflinecredential {
|
||
|
@HiveField(0)
|
||
|
final String username1;
|
||
|
|
||
|
@HiveField(1)
|
||
|
final int usrid1;
|
||
|
|
||
|
Addtestofflinecredential({required this.username1, required this.usrid1});
|
||
|
|
||
|
@override
|
||
|
dynamic noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
|
||
|
}
|