FPadding<T extends App<T> >.all constructor
Implementation
factory FPadding.all(T app, num all, {
required FWidget<T> child,
}) => .new(app,
left: all.toDouble(),
top: all.toDouble(),
right: all.toDouble(),
bottom: all.toDouble(),
child: child,
);