I want to cast easyly. because it is too long. `List<int> hoge = map['hoge']?.cast<int>() ?? [];` I want to do this. `List<int> hoge = map['hoge'].safecast<int>();`
I want to cast easyly.
because it is too long.
List<int> hoge = map['hoge']?.cast<int>() ?? [];I want to do this.
List<int> hoge = map['hoge'].safecast<int>();