SettingsButton constructor

SettingsButton(
  1. {Color textColor = Colors.white,
  2. required String buttonText,
  3. Color buttonColor = CupertinoColors.systemBlue,
  4. required Function callFunction}
)

Implementation

SettingsButton(
    {this.textColor = Colors.white,
    required this.buttonText,
    this.buttonColor = CupertinoColors.systemBlue,
    required this.callFunction});