conquerorOriginal post
Rank 3: Container
importing this two file is giving error ,
import 'package:appwrite/appwrite.dart';
import 'package:appwrite/models.dart';
Summary
If you are experiencing an error while importing the two packages 'appwrite/appwrite.dart' and 'appwrite/models.dart' in the same file, you can try using aliases. Add the following line to your code:
import 'package:Appwrite/models.dart as models;
Then, you can use it like 'models.Account' to avoid conflicts between the two packages.