Appraise constructor

Appraise({
  1. Key? key,
  2. String title = '',
  3. AppraiseHeaderType headerType = AppraiseHeaderType.spaceBetween,
  4. AppraiseType type = AppraiseType.star,
  5. List<String>? iconDescriptions,
  6. List<String>? tags,
  7. String inputHintText = '',
  8. AppraiseConfirmClick? onConfirm,
  9. AppraiseConfig config = const AppraiseConfig(),
})

create BrnAppraise

Implementation

Appraise(
    {Key? key,
    this.title = '',
    this.headerType = AppraiseHeaderType.spaceBetween,
    this.type = AppraiseType.star,
    this.iconDescriptions,
    this.tags,
    this.inputHintText = '',
    this.onConfirm,
    this.config = const AppraiseConfig()})
    : super(key: key);