barLabelAnchor static method

BarLabelAnchor barLabelAnchor(
  1. BarLabelAnchor? type
)

Implementation

static common.BarLabelAnchor barLabelAnchor(BarLabelAnchor? type) {
  switch (type) {
    case BarLabelAnchor.start:
      return common.BarLabelAnchor.start;
    case BarLabelAnchor.middle:
      return common.BarLabelAnchor.middle;
    default:
      return common.BarLabelAnchor.end;
  }
}