Flexmonster constructor

Flexmonster({
  1. String? height,
  2. String? width,
  3. bool? toolbar,
  4. String? licenseKey,
  5. dynamic report,
  6. dynamic global,
  7. dynamic accessibility,
  8. dynamic shareReportConnection,
  9. Key? key,
})

Implementation

Flexmonster(
    {String? height,
    String? width,
    bool? toolbar,
    String? licenseKey,
    dynamic report,
    dynamic global,
    dynamic accessibility,
    dynamic shareReportConnection,
    Key? key})
    : super(key: key) {
  _height = height;
  _width = width;
  _toolbar = toolbar;
  _licenseKey = licenseKey;
  _report = report;
  _global = global;
  _accessibility = accessibility;
  _shareReportConnection = shareReportConnection;
}