Skip to content

Commit

Permalink
Makes inits are public
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseyPleshkov committed Dec 14, 2024
1 parent b09f67f commit 8de4872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/FCM/FCMAndroidConfig/FCMAndroidNotification.swift
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public struct FCMAndroidNotification: Sendable, Codable, Equatable {
/// If present, it will override google.firebase.fcm.v1.Notification.image.
public var image: String?

init(
public init(
title: String? = nil,
body: String? = nil,
icon: String? = nil,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public struct FCMAndroidNotificationLightSettings: Sendable, Codable, Equatable
/// A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
public var lightOffDuration: String

init(color: Color, lightOnDuration: String, lightOffDuration: String) {
public init(color: Color, lightOnDuration: String, lightOffDuration: String) {
self.color = color
self.lightOnDuration = lightOnDuration
self.lightOffDuration = lightOffDuration
Expand Down

0 comments on commit 8de4872

Please sign in to comment.