GPUBufferDescriptor constructor
Implementation
factory GPUBufferDescriptor(
{required int size, required int usage, bool? mappedAtCreation}) =>
GPUBufferDescriptor._(
size: size,
usage: usage,
mappedAtCreation: mappedAtCreation ?? false);