reloadTimelines static method

Future<void> reloadTimelines(
  1. String kind
)

Reloads the timelines for all widgets of a particular kind.

  • Parameter kind: A string that identifies the widget and matches the value you used when you created the widget's configuration.

Implementation

static Future<void> reloadTimelines(
  String kind,
) async {
  return _instance.reloadTimelines(kind);
}