fromOrNull static method

GenerateModel? fromOrNull(
  1. BaseModel? other
)

Implementation

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