NoNetworkDialog constructor

const NoNetworkDialog(
  1. {Key? key,
  2. String text = 'Reintentar',
  3. required VoidCallback onTap,
  4. bool hasInsetPadding = true}
)

Implementation

const NoNetworkDialog({
  Key? key,
  this.text = 'Reintentar',
  required this.onTap,
  this.hasInsetPadding = true,
}) : super(key: key);