getProfile abstract method

  1. @Get(path: 'summary/profile/{user_id}')
Future<Response<Profile>> getProfile(
  1. @Path('user_id') String userId,
  2. @Query('provider') String? provider
)

Implementation

@Get(path: 'summary/profile/{user_id}')
Future<Response<Profile>> getProfile(
    @Path('user_id') String userId, @Query('provider') String? provider);