padding method
Implementation
Widget padding({
required EdgeInsetsGeometry padding,
Key? key,
}) {
return Padding(
child: this,
padding: padding,
key: key,
);
}
Widget padding({
required EdgeInsetsGeometry padding,
Key? key,
}) {
return Padding(
child: this,
padding: padding,
key: key,
);
}