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