actions property

  1. @override
List<IButtonContent>? get actions
override

Property getter and setter for actions:

Implementation

@override
List<IButtonContent>? get actions => _actions;
  1. @override
set actions (List<IButtonContent>? actions)
override

Implementation

@override
set actions(List<IButtonContent>? actions) {
  this._actions = actions;
  wrapped['actions'] = jsonLiteral(actions);
}