FFCanvasProps constructor
Implementation
factory FFCanvasProps({
$core.double? width,
$core.double? height,
$core.String? deviceName,
}) {
final result = create();
if (width != null) result.width = width;
if (height != null) result.height = height;
if (deviceName != null) result.deviceName = deviceName;
return result;
}