fromOrNull static method

GenerateScreenBindings? fromOrNull(
  1. BaseModel? other
)

Implementation

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