start method

Future<bool> start({
  1. int width = 640,
  2. int height = 480,
})

Starts the camera with requested width and height.

Implementation

Future<bool> start({int width = 640, int height = 480}) =>
    NexoraSdkPlatform.instance.startCamera(width: width, height: height);