GameOliveWebViewWidget constructor

const GameOliveWebViewWidget({
  1. Key? key,
  2. required String initialUrl,
  3. dynamic onRoundStarted(
    1. bool
    )?,
  4. dynamic onRoundEnded(
    1. bool
    )?,
  5. dynamic onGoToHome(
    1. bool
    )?,
  6. dynamic onBalanceChange(
    1. PlayerBalance
    )?,
  7. dynamic onUserAchievementsUpdate(
    1. List<PlayerAchievement>
    )?,
  8. GameOliveGameControllerCallback? onGameOliveWindowCreated,
})

Implementation

const GameOliveWebViewWidget(
    {Key? key,
    required this.initialUrl,
    this.onRoundStarted,
    this.onRoundEnded,
    this.onGoToHome,
    this.onBalanceChange,
    this.onUserAchievementsUpdate,
    this.onGameOliveWindowCreated})
    : super(key: key);