getProfile abstract method

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

Implementation

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