acceptSupportForNeed method Null safety

Future<Need?> acceptSupportForNeed(
  1. Need need,
  2. User acceptedUser
)

Accept a contact User for being the supporter of the Need Returns the updated need with its NeedInvitationStatus updated

Implementation

Future<Need?> acceptSupportForNeed(
    final Need need, final User acceptedUser) async {
  // ##TODO(sh1l0n): Fill query
  return null;
}