setHomeActions static method

Future<void> setHomeActions(
  1. List<ShakeBaseAction> homeActions
)

Sets shake home screen subtitle.

Implementation

static Future<void> setHomeActions(List<ShakeBaseAction> homeActions) async {
  _configuration.homeActions = homeActions;
  await _channel.invokeMethod('setHomeActions', {
    'homeActions': homeActions.map((action) => action.toMap()).toList(),
  });
}