BizKit constructor

BizKit(
  1. String? _icon,
  2. String _name,
  3. String _group,
  4. String? _desc,
  5. KitPageBuilder? _kitBuilder,
  6. String? _key,
  7. Function? _action,
)

_name不能为空 _group不能为空

Implementation

BizKit(this._icon, this._name, this._group, this._desc, this._kitBuilder,
    this._key, this._action)
    : assert(_name != null);