GiftBackground constructor
const
GiftBackground({})
Creates a new GiftBackground object.
Implementation
const factory GiftBackground({
/// Center color of the background in RGB format
@JsonKey(name: 'center_color') required int centerColor,
/// Edge color of the background in RGB format
@JsonKey(name: 'edge_color') required int edgeColor,
/// Text color of the background in RGB format
@JsonKey(name: 'text_color') required int textColor,
}) = _GiftBackground;