makeTransformerProperty method
Implementation
@override
MapperProperty makeTransformerProperty(bool write) {
if ( write )
throw MapperException("constants are not writeable");
else
return ConstantValue(value: value);
}
@override
MapperProperty makeTransformerProperty(bool write) {
if ( write )
throw MapperException("constants are not writeable");
else
return ConstantValue(value: value);
}