toJson method

Map<String, dynamic> toJson()

Returns the data fields of IOSNotificationOptions in JSON format.

Implementation

Map<String, dynamic> toJson() {
  return {
    'showNotification': showNotification,
    'playSound': playSound,
  };
}