coerceAtLeast method

double coerceAtLeast(
  1. double from
)

Implementation

double coerceAtLeast(double from) {
  if (this < from) {
    return from;
  }
  return this;
}