getProductConfigLong static method

  1. @Deprecated("This method is deprecated since version 1.7.0 and will be removed in the future versions of this SDK.")
Future<int?> getProductConfigLong(
  1. String key
)

Returns the parameter value for the given key as a long (int for Dart).

Implementation

@Deprecated(
    "This method is deprecated since version 1.7.0 and will be removed in the future versions of this SDK.")

///Returns the parameter value for the given key as a long (int for Dart).
static Future<int?> getProductConfigLong(String key) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('getLong', {'key': key});
}