updateUserProfile method
[Future[<[QueryResult[<[Object?]>]]>]] updateUserProfile(
)
Updates the user profile using a GraphQL mutation.
params:
variables
: A map of key-value pairs representing the variables required for the GraphQL mutation. Ifnull
, the mutation is performed without additional variables.
returns:
Future<QueryResult<Object?>>
: which contains the result of the GraphQL mutation.
Implementation
Future<QueryResult<Object?>> updateUserProfile(
Map<String, dynamic>? variables,
)
- talawa
- user_profile_service
- UserProfileService
- updateUserProfile method