ChatBackground constructor

const ChatBackground({
  1. @JsonKey(name: 'type') required BackgroundType type,
})

Constructs a ChatBackground object.

Implementation

const factory ChatBackground({
  /// Type of the background.
  @JsonKey(name: 'type') required final BackgroundType type,
}) = _ChatBackground;