getLong static method

Future<int?> getLong(
  1. String key, {
  2. dynamic defaultValue = 0,
})

Implementation

static Future<int?> getLong(String key, {defaultValue = 0}) {
  return FlutterAddtoappBridgePlatform.instance.getLong(key, defaultValue: defaultValue);
}