toWire method

NotificationSettingsWire toWire()

Converts to wire datatype which is used for host platform communication.

Implementation

NotificationSettingsWire toWire() => NotificationSettingsWire(
      title: title,
      body: body,
      stopButton: stopButton,
      icon: icon,
      iconColorAlpha: iconColor?.a,
      iconColorRed: iconColor?.r,
      iconColorGreen: iconColor?.g,
      iconColorBlue: iconColor?.b,
    );