Skip to content

Commit

Permalink
[Fix] BeizerToastViewModel의 init을 public 하도록 수정 (#6)
Browse files Browse the repository at this point in the history
[description]

[issue-number]
  • Loading branch information
ghis22130 authored Feb 13, 2023
1 parent 8fbf47b commit c242a99
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ public struct BezierToastViewModel: Equatable {
var leftImageLength: CGFloat { 20 }
var leftImageTopPadding: CGFloat { 3 }

init(title: String) {
public init(title: String) {
self.title = title
}

init(leftImage: Image, title: String) {
public init(leftImage: Image, title: String) {
self.leftImage = leftImage
self.title = title
}

init(leftImage: Image, leftImageTintColor: SemanticColor, title: String) {
public init(leftImage: Image, leftImageTintColor: SemanticColor, title: String) {
self.leftImage = leftImage
self.leftImageTintColor = leftImageTintColor
self.title = title
Expand Down

0 comments on commit c242a99

Please sign in to comment.