updateImageForBecomeSeller method

Future<String?> updateImageForBecomeSeller(
  1. dynamic fileType,
  2. dynamic path
)

Implementation

Future<String?> updateImageForBecomeSeller(fileType, path) async {
  NetworkResponse response =
      await _api.updateImageForBecomeSeller(fileType, path);
  return response.data;
}