syncVariablesinProd static method

Future<void> syncVariablesinProd(
  1. bool isProduction
)

Uploads variables to the server.

  • @param isProduction Provide true if variables must be sync in Production build/configuration.

Implementation

static Future<void> syncVariablesinProd(bool isProduction) async {
  return await _dartToNativeMethodChannel.invokeMethod('syncVariablesinProd', {'isProduction': isProduction});
}