UnityView constructor

const UnityView({
  1. Key? key,
  2. required UnityViewCreatedCallback onCreated,
  3. required UnityViewMessageCallback onMessage,
  4. UnityViewReattachedCallback? onReattached,
  5. String? webUrl,
})

Implementation

const UnityView({
  Key? key,
  required this.onCreated,
  required this.onMessage,
  this.onReattached,
  this.webUrl,
}) : super(key: key);