resumePreview method

Future resumePreview()

Implementation

Future<dynamic> resumePreview() async {
  try {
    return await _cameraChannel.invokeMethod("resumePreview");
  } catch (e) {
    Logger.root.warning(e);
  }
  return null;
}