ceil method

  1. @override
int ceil()

Returns the least integer no smaller than this.

If this is not finite (NaN or infinity), throws an UnsupportedError.

Implementation

@override
int ceil() => value.ceil();