WebDataRocks constructor

WebDataRocks({
  1. String? height,
  2. String? width,
  3. bool? toolbar,
  4. dynamic report,
  5. dynamic global,
  6. Key? key,
})

Implementation

WebDataRocks(
    {String? height,
    String? width,
    bool? toolbar,
    dynamic report,
    dynamic global,
    Key? key})
    : super(key: key) {
  _height = height;
  _width = width;
  _toolbar = toolbar;
  _report = report;
  _global = global;
}