updateImageForBecomeSeller method

Future<String?> updateImageForBecomeSeller(
  1. dynamic fileType,
  2. dynamic path, [
  3. ProgressCallback? callback
])

Implementation

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