What should I specify the media type in the content type if the image can be jpeg or png ?
var postUri = Uri.parse('$serverUrl/store/signup');
var request = http.MultipartRequest('POST', postUri)
..fields['username'] = 'Username'
..files.add(await http.MultipartFile.fromPath(
'profilePic',
profilePic!.path,
contentType: MediaType('image', 'jpeg'),
));
var response = await request.send();