uploadImage method
Uploads filePath as a chat image attachment and returns its public
URL.
Implementation
@override
Future<String> uploadImage(String filePath, String fileName) async {
await _client.storage.from(bucketName).upload(fileName, File(filePath));
return _client.storage.from(bucketName).getPublicUrl(fileName);
}