call method

Future<BundleMap?> call(
  1. String method,
  2. String? arg,
  3. BundleMap? extras
)

call(method: String, arg: String?, extras: Bundle?): Bundle? https://developer.android.com/reference/kotlin/android/content/ContentProvider#call_1

Implementation

Future<BundleMap?> call(String method, String? arg, BundleMap? extras) async {
  return null;
}