invokeMethodInt method

Future<int?> invokeMethodInt(
  1. FlutterSoundRecorderCallback callback,
  2. String methodName,
  3. Map<String, dynamic> call
)

Implementation

Future<int?> invokeMethodInt (FlutterSoundRecorderCallback callback,  String methodName, Map<String, dynamic> call)
{
  call['slotNo'] = findSession(callback);
  return _channel.invokeMethod(methodName, call);
}