fromOrNull static method

Property? fromOrNull(
  1. BaseModel? other
)

Implementation

static Property? fromOrNull(
  BaseModel? other,
) {
  return fromJsonOrNull(other?.toJson())!;
}