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