fromOrNull static method

GenerateDartModel? fromOrNull(
  1. BaseModel? other
)

Implementation

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