resume static method

Future<void> resume()

Resume video capture (which was previously stopped by the call to "pause()")

Implementation

static Future<void> resume() async {
  await _channel?.invokeMethod('resume', <String, dynamic>{});
}