imagesPreview method

void imagesPreview(
  1. List<String> picArr,
  2. dynamic index,
  3. dynamic loadHistoryCallBack(
      )
    )

    Implementation

    void imagesPreview(List<String> picArr, var index, Function() loadHistoryCallBack) async {
      try {
        _loadHistoryCallBack = loadHistoryCallBack;
        await _channel.invokeMethod('imagesPreview', {'data': picArr, 'idx': index});
      } catch (e) {}
    }