atLeast method

num atLeast(
  1. num atLeast
)

Implementation

num atLeast(num atLeast) {
  if (this == null) {
    return atLeast;
  } else {
    if (this! < atLeast) return atLeast;
    return this!;
  }
}