Property.of constructor

Property.of(
  1. Property other
)

Implementation

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