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