AppwriteElevatedButton constructor

const AppwriteElevatedButton({
  1. Key? key,
  2. required dynamic onPressed()?,
  3. required String text,
})

Implementation

const AppwriteElevatedButton({
  super.key,
  required this.onPressed,
  required this.text,
});