centerChildren method

Row centerChildren()

Centers all children within the Row

Implementation

Row centerChildren() {
  return Row(
    mainAxisAlignment: MainAxisAlignment.center,
    crossAxisAlignment: CrossAxisAlignment.center,
    children: children,
  );
}