WindowsNotificationText constructor

const WindowsNotificationText({
  1. required String text,
  2. bool centerIfCall = false,
  3. bool isCaption = false,
  4. WindowsTextPlacement? placement,
  5. String? languageCode,
})

Creates text for a Windows notification.

Implementation

const WindowsNotificationText({
  required this.text,
  this.centerIfCall = false,
  this.isCaption = false,
  this.placement,
  this.languageCode,
});