FFCanvasProps constructor

FFCanvasProps({
  1. double? width,
  2. double? height,
  3. String? deviceName,
})

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;
}