paddingOnly method
Returns a copy of this style with updated padding values.
Implementation
TextComponentStyle paddingOnly({
int top = 0,
int right = 0,
int bottom = 0,
int left = 0,
}) => copyWith(
padding: EdgeInsets.only(
top: top,
right: right,
bottom: bottom,
left: left,
),
);