x method

BaseFill x(
  1. dynamic x
)

Sets the x value. Receives dynamic returns this BaseFill

Implementation

BaseFill x(dynamic x) {
  _x = x;
  return this;
}