Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はダーツファイルを書いています:
import 'something.dart' part of my_lib; class A{ //... }
importandディレクティブを逆にしてこれを試しましたが、part ofまだ機能しません。ライブラリの一部としてクラス ファイルを持たず、インポートを行うことはできませんか?
import
part of
すべてのインポートは、ライブラリを定義するファイルに入れる必要があります。
としょうかん:
library my_lib; import 'something.dart'; part 'a.dart'; class MyLib { //... }
ダーツ
part of my_lib; class A { //... }
a.dart は my_lib の一部であるため、my_lib がインポートするすべてのファイルにアクセスできます。