MessageForm constructor

const MessageForm({
  1. required int postId,
  2. required UserModel currentUser,
  3. required dynamic loc,
})

Implementation

const MessageForm({
  required this.postId,
  required this.currentUser,
  required this.loc,
});