location method

T location({
  1. required int location,
})

设置打印起始横向位置

@param location 0:居左 1:居中 2:居右

Implementation

T location({required int location}) {
  return push(ELocation(location: location));
}