MmUpdatePostRequest constructor

MmUpdatePostRequest({
  1. required String id,
  2. bool? isPinned,
  3. String? message,
  4. bool? hasReactions,
  5. String? props,
})

Returns a new MmUpdatePostRequest instance.

Implementation

MmUpdatePostRequest({
  required this.id,
  this.isPinned,
  this.message,
  this.hasReactions,
  this.props,
});