updateUserConfig method

  1. @override
Future<Result> updateUserConfig(
  1. Map<String, dynamic> configPatch
)
override

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,
  );
}