FFVerticalDivider constructor
FFVerticalDivider({
- double? legacyWidth,
- double? legacyThickness,
- FFColor? legacyColor,
- double? legacyIndent,
- double? legacyEndIndent,
- FFDividerLineStyle? lineStyle,
- double? legacyHeight,
- FFDoubleValue? widthValue,
- FFDoubleValue? thicknessValue,
- FFColorValue? colorValue,
- FFDoubleValue? indentValue,
- FFDoubleValue? endIndentValue,
- FFDoubleValue? heightValue,
Implementation
factory FFVerticalDivider({
$core.double? legacyWidth,
$core.double? legacyThickness,
FFColor? legacyColor,
$core.double? legacyIndent,
$core.double? legacyEndIndent,
FFDividerLineStyle? lineStyle,
$core.double? legacyHeight,
FFDoubleValue? widthValue,
FFDoubleValue? thicknessValue,
FFColorValue? colorValue,
FFDoubleValue? indentValue,
FFDoubleValue? endIndentValue,
FFDoubleValue? heightValue,
}) {
final result = create();
if (legacyWidth != null) result.legacyWidth = legacyWidth;
if (legacyThickness != null) result.legacyThickness = legacyThickness;
if (legacyColor != null) result.legacyColor = legacyColor;
if (legacyIndent != null) result.legacyIndent = legacyIndent;
if (legacyEndIndent != null) result.legacyEndIndent = legacyEndIndent;
if (lineStyle != null) result.lineStyle = lineStyle;
if (legacyHeight != null) result.legacyHeight = legacyHeight;
if (widthValue != null) result.widthValue = widthValue;
if (thicknessValue != null) result.thicknessValue = thicknessValue;
if (colorValue != null) result.colorValue = colorValue;
if (indentValue != null) result.indentValue = indentValue;
if (endIndentValue != null) result.endIndentValue = endIndentValue;
if (heightValue != null) result.heightValue = heightValue;
return result;
}