then method

Future<TTValue> then(
  1. dynamic fn(
    1. TTValue ttValue
    )
)

Implementation

Future<dynamic> then(dynamic Function(TTValue ttValue) fn) {
  return snapshot().then(fn);
}