then method

Future then(
  1. dynamic fn(
    1. dynamic ttValue
    )
)

Implementation

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