FFUploadDataSettings_Resolution constructor

FFUploadDataSettings_Resolution({
  1. double? width,
  2. double? height,
})

Implementation

factory FFUploadDataSettings_Resolution({
  $core.double? width,
  $core.double? height,
}) {
  final result = create();
  if (width != null) result.width = width;
  if (height != null) result.height = height;
  return result;
}