fromLength static method

Pointer<NativeString> fromLength(
  1. int length
)

Implementation

static Pointer<NativeString> fromLength(int length) {
  final result = calloc<Uint8>(length + 1);
  return result.cast();
}