OpenWSocialButton constructor

const OpenWSocialButton({
  1. Key? key,
  2. required dynamic nodeState,
  3. required SocialButtonType type,
  4. required FSize width,
  5. required FSize height,
  6. required dynamic onPressed(),
  7. required dynamic onLongPress(),
  8. CNode? child,
})

Implementation

const OpenWSocialButton({
  super.key,
  required super.nodeState,
  required this.type,
  required this.width,
  required this.height,
  required this.onPressed,
  required this.onLongPress,
  this.child,
});