TestRunnerThemeData constructor

const TestRunnerThemeData({
  1. Color runnerOverlayColor = Colors.black26,
  2. bool showRunnerStatus = kDebugMode == true,
  3. bool showStepText = false,
  4. TestStatusAlignment statusAlignment = TestStatusAlignment.bottom,
  5. Color statusBackgroundColor = Colors.black45,
  6. Color statusErrorColor = Colors.red,
  7. double statusOpacity = 0.4,
  8. Color statusProgressColor = Colors.black,
  9. Color statusSuccessColor = Colors.green,
  10. Color statusTextColor = Colors.white,
})

Implementation

const TestRunnerThemeData({
  this.runnerOverlayColor = Colors.black26,
  this.showRunnerStatus = kDebugMode == true,
  this.showStepText = false,
  this.statusAlignment = TestStatusAlignment.bottom,
  this.statusBackgroundColor = Colors.black45,
  this.statusErrorColor = Colors.red,
  this.statusOpacity = 0.4,
  this.statusProgressColor = Colors.black,
  this.statusSuccessColor = Colors.green,
  this.statusTextColor = Colors.white,
}) : assert(statusOpacity >= 0.0 && statusOpacity <= 1.0);