Dart Futureクラスのプロパティについてメモ書き。
Futureクラスでは2つのプロパティが用意されている。hashCodeとruntimeTypeだ。
hashCodeはオブジェクトのハッシュコードをint型で返す。
void main() {
var test = Future<int>.value(255).hashCode;
print(test);
}
実行結果。
1056223383
runtimeTypeはオブジェクトの型を返す。
void main() {
var test = Future<int>.value(255).runtimeType;
print(test);
}
実行結果。
Future<int>
コメント