guys!
When developing hybrid apps using flutter, sometimes the imports section takes too many lines of code. As a solution to this, I saw in a certain course the practice of creating a file that only has exports, and then use this file to import all the exports file specified. As in the example:
myExportFile.dart
export 'package:flutter/myCustomWidgetBlack.dart';
export 'package:flutter/myCustomWidgetWhite.dart';
export 'package:flutter/myCustomWidgetRed.dart';
In practice, insted calling the import to each custom widget, a I only imports myExportFile.dart and then, i'll have all the necessarie import to use them.
This is a good practice? Has some negative point by doing this?