getAxisDirectionFromAxisReverseAndDirectionality method

AxisDirection getAxisDirectionFromAxisReverseAndDirectionality(
  1. Axis axis,
  2. bool reverse
)

Returns the widgets.AxisDirection in the given widgets.Axis in the current widgets.Directionality (or the reverse if reverse is true).

Equivalent to widgets.getAxisDirectionFromAxisReverseAndDirectionality.

Implementation

widgets.AxisDirection getAxisDirectionFromAxisReverseAndDirectionality(
  widgets.Axis axis,
  bool reverse,
) {
  return widgets.getAxisDirectionFromAxisReverseAndDirectionality(
    this,
    axis,
    reverse,
  );
}