PhotoViewController constructor

PhotoViewController({
  1. required int id,
})

Implementation

PhotoViewController({required int id}) {
  _channel = MethodChannel('plugins.aotasoft.com/photoview_$id');
  _channel.setMethodCallHandler(_handleMethodCalls);
  init();
}