PluginPopLoadingContainer constructor

const PluginPopLoadingContainer({
  1. Key? key,
  2. Widget? child,
  3. bool loading = false,
  4. bool canTap = false,
  5. bool isDarkTheme = true,
  6. String? tips,
})

Implementation

const PluginPopLoadingContainer(
    {Key? key,
    this.child,
    this.loading = false,
    this.canTap = false,
    this.isDarkTheme = true,
    this.tips})
    : super(key: key);