SolidLogoutConfig constructor

const SolidLogoutConfig({
  1. bool enabled = true,
  2. IconData icon = Icons.logout,
  3. String text = 'Logout',
  4. required void onLogout(
    1. BuildContext
    ),
  5. Color? color,
})

Implementation

const SolidLogoutConfig({
  this.enabled = true,
  this.icon = Icons.logout,
  this.text = 'Logout',
  required this.onLogout,
  this.color,
});