IsCharLowerW method

int IsCharLowerW(
  1. int ch
)

Implementation

int IsCharLowerW(
  int ch,
) {
  return (_IsCharLowerW ??= _dylib
      .lookupFunction<_c_IsCharLowerW, _dart_IsCharLowerW>('IsCharLowerW'))(
    ch,
  );
}