Flutter: Is it possible to use Reaction function in Flutter?

[Problem/Question]
// Detailed description of issue.

I want to use reaction function in Flutter.
but the BaseMessage didn’t give me reacions info(it give me just empty array )

Is it possible in Flutter to use Reaction function??

If it is not yet, I need to change my plan.
plz give me quick reply. thank you.

I Find It!!

MessageListParams()

class MessageListParams extends BaseMessageFetchParams 

class BaseMessageFetchParams {
  /// Whether the meta arrays should be included in the results.
  @JsonKey(name: 'with_sorted_meta_array')
  bool includeMetaArray = false;

  /// Whether the reaction data should be included in the results.
  bool includeReactions = false;



I changed includeReactions false to true.

I Got It!