Closed Snehal-Singh174 closed 1 year ago
while adding googleMap inside a class that also has Icon supported by flutter widgets then getting conflict of imports issue
You can hide this class on the import directive:
import 'package:google_maps/google_maps.dart' hide Icon;
or import google_maps with a prefix:
import 'package:google_maps/google_maps.dart' as gmaps;
while adding googleMap inside a class that also has Icon supported by flutter widgets then getting conflict of imports issue