LoginSignup
7
3

More than 5 years have passed since last update.

dartで、あるパッケージから特定のオブジェクトだけimportする方法

Last updated at Posted at 2018-12-19

import AAA show aaa を使うと、 AAAというパッケージから、aaaというオブジェクトだけをimportできます。

python でいう、 from AAA import aaa と同じだと認識しています。

例:

import 'dart:convert' show JSON;

この記述の利点としては、 コード中のオブジェクトが、どのパッケージにあるかがすぐわかる ことだと思います。

7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3