setPictureSize method

Future<void> setPictureSize(
  1. int width,
  2. int height
)

Implementation

Future<void> setPictureSize(int width, int height) async {
  await channel.invokeMethod(
      'setPictureSize', {"pictureWidth": width, "pictureHeight": height});
}