AndroidPlatform constructor

AndroidPlatform({
  1. required String packageId,
  2. required String sha1Cert,
  3. required bool isOnline,
})

Implementation

AndroidPlatform(
    {required this.packageId, required this.sha1Cert, required bool isOnline})
    : super(isMobile: true, isOnline: isOnline);