report property

void Function(T) get report

Implementation

void Function(T) get report => (T p0) => _i5.callMethod(
      _i5.getProperty(
        this,
        'report',
      ),
      r'call',
      [
        this,
        p0,
      ],
    );
set report (void value(T))

Implementation

set report(void Function(T) value) {
  _i5.setProperty(
    this,
    'report',
    _i5.allowInterop(value),
  );
}