Reply<T>.error constructor

Reply<T>.error(
  1. Status status, [
  2. dynamic error = ""
])

Implementation

factory Reply.error(Status status, [dynamic error = ""]) =>
    Reply(status: status, error: error);