StyleImpl
data class StyleImpl(val fontColor: String? = null, val backgroundColor: String? = null, val fontSize: Style.Size? = null, val alignment: Style.Alignment? = null, val fontStyle: Style.FontStyle? = null, var span: Spanned? = null) : Style
A text style is used to define the appearance of the text in the push notification. span is the rendered HTML of the text.
Constructors
Link copied to clipboard
constructor(fontColor: String? = null, backgroundColor: String? = null, fontSize: Style.Size? = null, alignment: Style.Alignment? = null, fontStyle: Style.FontStyle? = null, span: Spanned? = null)