BackupKeyWidget constructor

BackupKeyWidget({
  1. Key? key,
  2. required String atsign,
  3. bool isButton = false,
  4. bool? isIcon,
  5. String? buttonText,
  6. Color? iconColor,
  7. double? buttonWidth,
  8. double? buttonHeight,
  9. Color? buttonColor,
  10. double? iconSize,
})

Implementation

BackupKeyWidget(
    {Key? key,
    required this.atsign,
    this.isButton = false,
    this.isIcon,
    this.buttonText,
    this.iconColor,
    this.buttonWidth,
    this.buttonHeight,
    this.buttonColor,
    this.iconSize})
    : super(key: key);