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