mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
3 years ago
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'profile.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// TypeAdapterGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
class RulesProfileAdapter extends TypeAdapter<RulesProfile> {
|
||
|
@override
|
||
|
final int typeId = 1;
|
||
|
|
||
|
@override
|
||
|
RulesProfile read(BinaryReader reader) {
|
||
|
final numOfFields = reader.readByte();
|
||
|
final fields = <int, dynamic>{
|
||
|
for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
|
||
|
};
|
||
|
return RulesProfile(
|
||
|
name: fields[0] as String,
|
||
|
rules: (fields[1] as List).cast<Rule>(),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
void write(BinaryWriter writer, RulesProfile obj) {
|
||
|
writer
|
||
|
..writeByte(2)
|
||
|
..writeByte(0)
|
||
|
..write(obj.name)
|
||
|
..writeByte(1)
|
||
|
..write(obj.rules);
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
int get hashCode => typeId.hashCode;
|
||
|
|
||
|
@override
|
||
|
bool operator ==(Object other) =>
|
||
|
identical(this, other) ||
|
||
|
other is RulesProfileAdapter &&
|
||
|
runtimeType == other.runtimeType &&
|
||
|
typeId == other.typeId;
|
||
|
}
|