offstage method

Widget offstage({
  1. Key? key,
  2. bool offstage = true,
})

Implementation

Widget offstage({
  Key? key,
  bool offstage = true,
}) =>
    Offstage(
      key: key,
      offstage: offstage,
      child: this,
    );