push method

void push(
  1. BuildContext context
)

Implementation

void push(BuildContext context) => Navigator.push(
      context,
      MaterialPageRoute(
        builder: (context) => _MobileView(item: this),
      ),
    );