AsyncComplete<T extends Object?> constructor

const AsyncComplete<T extends Object?>(
  1. T data
)

Creates an AsyncComplete object representing the phase where an asynchronous operation has completed successfully.

Implementation

const AsyncComplete(T super.data) : _data = data;