RequestSuccessView constructor

RequestSuccessView({
  1. Key? key,
  2. required String title,
  3. required String content,
  4. Widget? viewButton,
})

Implementation

RequestSuccessView(
    {Key? key, required this.title, required this.content, this.viewButton})
    : super(key: key);