RecordData static method

void RecordData(
  1. Uint8List data
)

传入录音数据

Implementation

static void RecordData(Uint8List data) {
  Log.i(tag, "RecordData:${data.length}");
  if (pocChangeNotifier.isOnline && pocChangeNotifier.isRecording) {
    //更新时间戳
    lastRecordAndPlayTime = DateTime.now().millisecondsSinceEpoch;
    PlatformMethodInvokeHandler.invokeMethod(
        "RecordData", [data, data.length]);
  }
}