getIsUcbEnabled method

  1. @override
Future<bool> getIsUcbEnabled()
override

Whether User Choice Billing is currently active for this tenant/market. Always false on iOS (UCB is an Android/Play concept).

Implementation

@override
Future<bool> getIsUcbEnabled() async {
  final v = await methodChannel.invokeMethod<bool>('getIsUcbEnabled');
  return v ?? false;
}