cloneWidgetInto method

  1. @override
void cloneWidgetInto(
  1. FWidget<T> copy
)
override

Implementation

@override
void cloneWidgetInto(FWidget<T> copy) {
  if (copy is! FPadding<T>) return;
  copy.top = top;
  copy.right = right;
  copy.bottom = bottom;
  copy.left = left;
}