FFBorder_Side constructor

FFBorder_Side({
  1. double? legacySize,
  2. @Deprecated('This field is deprecated.') Int64? legacyLegacyColor,
  3. FFColor? legacyColor,
  4. FFDoubleValue? sizeValue,
  5. FFColorValue? colorValue,
})

Implementation

factory FFBorder_Side({
  $core.double? legacySize,
  @$core.Deprecated('This field is deprecated.')
  $fixnum.Int64? legacyLegacyColor,
  FFColor? legacyColor,
  FFDoubleValue? sizeValue,
  FFColorValue? colorValue,
}) {
  final result = create();
  if (legacySize != null) result.legacySize = legacySize;
  if (legacyLegacyColor != null) result.legacyLegacyColor = legacyLegacyColor;
  if (legacyColor != null) result.legacyColor = legacyColor;
  if (sizeValue != null) result.sizeValue = sizeValue;
  if (colorValue != null) result.colorValue = colorValue;
  return result;
}