WorldBehavior constructor

const WorldBehavior({
  1. required String id,
  2. required String driver,
  3. required String touchpoint,
  4. required String method,
  5. required Map<String, dynamic> args,
  6. required int maxAttempts,
  7. int backoffBaseMs = 50,
  8. double backoffFactor = 2.0,
  9. String expect = 'green',
})

Implementation

const WorldBehavior({
  required this.id,
  required this.driver,
  required this.touchpoint,
  required this.method,
  required this.args,
  required this.maxAttempts,
  this.backoffBaseMs = 50,
  this.backoffFactor = 2.0,
  this.expect = 'green',
});