isRemoteConfigsReady static method

Future<bool> isRemoteConfigsReady()

Implementation

static Future<bool> isRemoteConfigsReady() async {
  //maybe work without nullable
  final result = await _channel.invokeMethod('isRemoteConfigsReady');
  return result as bool? ?? false;
}