condition property

bool Function(dynamic responseBody)? condition
final

Optional guard: navigation only happens when this returns true.

Receives the parsed response body so you can check specific fields, e.g. (body) => body['verified'] == true.

Implementation

final bool Function(dynamic responseBody)? condition;