PlatformDetectByCompany constructor

const PlatformDetectByCompany({
  1. Key? key,
  2. Widget? apple = const SizedBox(),
  3. Widget? google = const SizedBox(),
  4. Widget? microsoft = const SizedBox(),
  5. Widget? linux = const SizedBox(),
})

Implementation

const PlatformDetectByCompany(
    {Key? key,
    this.apple = const SizedBox(),
    this.google = const SizedBox(),
    this.microsoft = const SizedBox(),
    this.linux = const SizedBox()})
    : super(key: key);