round method

double round(
  1. double _X
)

Implementation

double round(
  double _X,
) {
  return (_round ??= _dylib.lookupFunction<_c_round, _dart_round>('round'))(
    _X,
  );
}