positionChild method

Widget positionChild(
  1. Widget child, [
  2. bool isStackLayout = false
])

Implementation

Widget positionChild(Widget child, [bool isStackLayout = false]) {
  if (isStackLayout) {
    return stackChild(child);
  } else {
    return commonChild(child);
  }
}