XRWebGLLayerInit constructor
XRWebGLLayerInit({})
Implementation
factory XRWebGLLayerInit(
{bool? antialias,
bool? depth,
bool? stencil,
bool? alpha,
bool? ignoreDepthValues,
double? framebufferScaleFactor}) =>
XRWebGLLayerInit._(
antialias: antialias ?? true,
depth: depth ?? true,
stencil: stencil ?? false,
alpha: alpha ?? true,
ignoreDepthValues: ignoreDepthValues ?? false,
framebufferScaleFactor: framebufferScaleFactor ?? 1.0);