ResponseAction constructor

ResponseAction({
  1. Response? response,
  2. String dispatcherKey = "",
  3. dynamic decodeResponse(
    1. Store,
    2. Response
    )?,
  4. String networkCompletionKey = "",
})

Implementation

ResponseAction(
    {this.response,
    this.dispatcherKey = "",
    this.decodeResponse,
    this.networkCompletionKey = ""})
    : timestamp = DateTime.now().millisecondsSinceEpoch;