Property.from constructor
Property.from(
- BaseModel? other
Implementation
factory Property.from(
BaseModel? other,
) {
try {
return fromOrNull(other)!;
} catch (e) {
assert(false, 'Property.from: $e');
rethrow;
}
}