AvatarWidget constructor

const AvatarWidget({
  1. Key? key,
  2. required Avatar avatar,
  3. required void onPlatformViewCreated(
    1. AvatarController controller
    ),
})

Implementation

const AvatarWidget({
  super.key,
  required this.avatar,
  required this.onPlatformViewCreated,
});