AnchorPanel constructor

const AnchorPanel({
  1. Key? key,
  2. required AnchorInfo anchorInfo,
  3. required bool isSubScribe,
  4. dynamic onSubscribePress(
    1. BuildContext context
    )?,
})

Implementation

const AnchorPanel(
    {Key? key,
    required this.anchorInfo,
    required this.isSubScribe,
    this.onSubscribePress})
    : super(key: key);