getAllRemote method
Implementation
@override
Future<List<TEntity>> getAllRemote() async {
try {
final str = await grpcGetAllRemote();
return str;
} on GrpcError catch (exception) {
if (exception.code == StatusCode.unavailable) {
throw UnavailableException(innerException: exception);
}
rethrow;
}
}