Mozes Ong
Mozes Ong
I have 2 orders Available Order A is geohash "w0zqfx9ne" geopoint [5.4475907° N, 100.3067173° E] Order B is geohash "w0zq3cprf" geopoint [5.3242402° N, 100.2822717° E] My Position is lat: 5.4375...
**Code** `collectionRef: Firestore.instance .collection('vendors') .where('storeType', isEqualTo: 'Cafe') .where('vendorType', isEqualTo: 2).where('block', isEqualTo: false) .where('applicationStatus', isEqualTo: 3).where('isVisible', isEqualTo: true)` **Scenario** As u can see i am using where(). However its causing me...
Is there a way to get file from the thumbnail? tried this but doesn't work ``` Uint8List? list = await assetEntity.thumbDataWithSize(400, 400); File file = File.fromRawPath(list!); ```