refLitSized<U extends NativeType, D> method

Pointer<U> refLitSized<U extends NativeType, D>(
  1. int count,
  2. String? key,
  3. Pointer<U> alloc(
    1. String, [
    2. int
    ])
)
inherited

Implementation

Pointer<U> refLitSized<U extends NativeType, D>(
  int count, String? key, Pointer<U> Function(String, [int]) alloc
) => alloc(key ?? 'Sized$U', count);