map<R> method

  1. @override
R map<R>(
  1. covariant R callback()
)
override

Applies the values of this tuple to an n-ary function.

Implementation

@override
R map<R>(R Function() callback) => callback();