addUserContext method

Future addUserContext(
  1. Map body
)

Implementation

Future<dynamic> addUserContext(
  Map<dynamic, dynamic> body,
) async {
  Response response = await _dio.put(
    '/v1/wallets/context',
    data: body,
    options: options,
  );
  return response.data;
}