cast<RK, RV> method

  1. @override
Map<RK, RV> cast<RK, RV>()
override

Returns a view of this map as having RK keys and RV instances.

This is a non-mutating operation that returns a new view of the map.

Implementation

@override
Map<RK, RV> cast<RK, RV>() => value.cast<RK, RV>();