PushMessageContentPhoto constructor

PushMessageContentPhoto({
  1. String? extra,
  2. int? client_id,
  3. Photo? photo,
  4. string? caption,
  5. Bool? is_secret,
  6. Bool? is_pinned,
})

Implementation

PushMessageContentPhoto({
  super.extra,
  super.client_id,
  this.photo,
  this.caption,
  this.is_secret,
  this.is_pinned,
});