typedef OnNotify(Map message); typedef OnSetupComplete(String token); abstract class MessagingService { void init(OnNotify onMessage, {OnNotify onLaunch, OnNotify onResume, OnSetupComplete onSetupComplete}); Future subscribe(String topic); Future unsubscribe(String topic); }