EmojiView constructor

const EmojiView({
  1. Key? key,
  2. required double left,
  3. required double top,
  4. required Function ontap,
  5. required dynamic onpanupdate(
    1. DragUpdateDetails
    ),
  6. required Map mapJson,
})

Implementation

const EmojiView({
  Key? key,
  required this.left,
  required this.top,
  required this.ontap,
  required this.onpanupdate,
  required this.mapJson,
}) : super(key: key);