FFPropertyParameterPass constructor

FFPropertyParameterPass({
  1. @Deprecated('This field is deprecated.') FFWidgetPropertyType? legacyType,
  2. @Deprecated('This field is deprecated.') FFColor? legacyColor,
  3. FFIcon? icon,
  4. FFDimensions? dimensions,
})

Implementation

factory FFPropertyParameterPass({
  @$core.Deprecated('This field is deprecated.')
  FFWidgetPropertyType? legacyType,
  @$core.Deprecated('This field is deprecated.') FFColor? legacyColor,
  FFIcon? icon,
  FFDimensions? dimensions,
}) {
  final result = create();
  if (legacyType != null) result.legacyType = legacyType;
  if (legacyColor != null) result.legacyColor = legacyColor;
  if (icon != null) result.icon = icon;
  if (dimensions != null) result.dimensions = dimensions;
  return result;
}