saveUserProfile method

Future saveUserProfile(
  1. Map body
)

Implementation

Future<dynamic> saveUserProfile(Map body) async {
  String url = '/v1/wallets/profiles';
  Response response = await _dio.post(
    url,
    data: body,
    options: options,
  );

  return response.data;
}