TestingConfig.fromYaml constructor

TestingConfig.fromYaml(
  1. Map m
)

Implementation

factory TestingConfig.fromYaml(Map m) => TestingConfig(
      unit: m['unit'] as bool? ?? false,
      widget: m['widget'] as bool? ?? false,
      integration: m['integration'] as bool? ?? false,
    );