sendNotification method
Send notification to specific targets (second step)
Implementation
Future<void> sendNotification({
required String notificationId,
List<String>? consumerIds,
List<String>? deviceTokens,
List<String>? tagIds,
String? osType,
String? timezone,
DateTime? scheduledTime,
Map<String, dynamic>? variables,
}) async {
await _platform.sendNotification(
notificationId: notificationId,
consumerIds: consumerIds,
deviceTokens: deviceTokens,
tagIds: tagIds,
osType: osType,
timezone: timezone,
scheduledTime: scheduledTime,
variables: variables,
);
}