PostActionButton constructor

const PostActionButton({
  1. Key? key,
  2. required bool? goToHome,
  3. required String? buttonTitle,
})

Implementation

const PostActionButton(
    {Key? key, required this.goToHome, required this.buttonTitle})
    : super(key: key);