NicePlatformBuilder constructor

const NicePlatformBuilder({
  1. Key? key,
  2. Widget? android,
  3. Widget? ios,
  4. Widget? web,
  5. Widget? windows,
  6. Widget? macos,
  7. Widget? linux,
  8. required Widget fallback,
})

Implementation

const NicePlatformBuilder({
  super.key,
  this.android,
  this.ios,
  this.web,
  this.windows,
  this.macos,
  this.linux,
  required this.fallback,
});