asParams method

List<Param> asParams()

Implementation

List<Param> asParams() {
  return [
    if (_offsetX != null) Param('x', _offsetX),
    if (_offsetY != null) Param('y', _offsetY),
    if (_gravity != null) Param('g', _gravity),
  ];
}