PlatformCard constructor

PlatformCard({
  1. PlatformCardArgs? args,
  2. Widget? child,
  3. Key? key,
})

Implementation

PlatformCard({
  PlatformCardArgs? args,
  this.child,
  Key? key,
})  : _args = args ?? const PlatformCardArgs(),
      super(key: key);