OpenNewViewTile constructor

const OpenNewViewTile({
  1. IconData icon = Icons.open_in_full,
  2. required String title,
  3. required Widget newView,
  4. bool supplyLoginModel = false,
  5. Key? key,
  6. Function? onPop,
})

Implementation

const OpenNewViewTile({
  this.icon = Icons.open_in_full,
  required this.title,
  required this.newView,
  this.supplyLoginModel = false,
  Key? key,
  this.onPop,
}) : super(key: key);