fromRawAttribute method
Implementation
T fromRawAttribute(Object attr) {
if (attr is T) return attr;
if (transform != null) {
return transform!.fromRawAttribute(provider, attr);
}
typeError(T, attr);
}
T fromRawAttribute(Object attr) {
if (attr is T) return attr;
if (transform != null) {
return transform!.fromRawAttribute(provider, attr);
}
typeError(T, attr);
}