updateUserConfig method
Implementation
@override
Future<Result> updateUserConfig(Map<String, dynamic> configPatch) {
const path = 'v1/user/config';
return builder.patch(
uri: '$baseUrl/$path',
body: configPatch,
success: (json) => json,
);
}