buildCreateAccountButton static method
Implementation
static Widget buildCreateAccountButton() {
return CustomButton(
text: "Download the application ",
onPressed: () {},
isOutlined: true,
suffixIcon: const Icon(Icons.download),
);
}