AppTxtRouteButton constructor

const AppTxtRouteButton({
  1. Key? key,
  2. String title = '',
  3. String btnText = '',
  4. Color btnTextColor = Colors.blue,
  5. String route = 'Invalid Route',
  6. bool pop = false,
  7. Object? arguments,
})

Implementation

const AppTxtRouteButton({
  super.key,
  this.title = '',
  this.btnText = '',
  this.btnTextColor = Colors.blue,
  this.route = 'Invalid Route',
  this.pop = false,
  this.arguments,
});