getAlertMessaging method

  1. @override
Future<AlertMessaging> getAlertMessaging({
  1. bool testing = false,
})
override

Launcher Content - Alert Messaging

Implementation

@override
Future<AlertMessaging> getAlertMessaging({bool testing = false}) async {
  final jsonData = await _fetchJson(
    _getLauncherContentUrl('alertMessaging.json', testing: testing),
  );
  return AlertMessaging.fromJson(jsonData);
}