decode method
Decode the serialized state of a component to a T
.
Implementation
T decode(Object? value) {
return _decode?.call(value) ?? _create!();
}
Decode the serialized state of a component to a T
.
T decode(Object? value) {
return _decode?.call(value) ?? _create!();
}