record method

dynamic record(
  1. String path
)

Implementation

record(String path) async {
  try {
    await _channelRecord.invokeMethod(path);
  } on PlatformException catch (e) {
    debugPrint(e.code);
  }
}