blob: 0d83dff245d664fd629d38ae4a1c47916a9fa8aa [file] [log] [blame]
// Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
import 'package:built_collection/built_collection.dart';
import 'package:built_value/serializer.dart';
class BoolSerializer implements PrimitiveSerializer<bool> {
final bool structured = false;
@override
final Iterable<Type> types = BuiltList<Type>([bool]);
@override
final String wireName = 'bool';
@override
Object serialize(Serializers serializers, bool boolean,
{FullType specifiedType = FullType.unspecified}) {
return boolean;
}
@override
bool deserialize(Serializers serializers, Object? serialized,
{FullType specifiedType = FullType.unspecified}) {
return serialized as bool;
}
}