PlatformGoldensConfig constructor

const PlatformGoldensConfig({
  1. Set<HostPlatform>? platforms,
  2. bool enabled = true,
  3. bool obscureText = false,
  4. bool renderShadows = true,
  5. FilePathResolver? filePathResolver,
  6. ThemeData? theme,
})

Implementation

const PlatformGoldensConfig({
  Set<HostPlatform>? platforms,
  bool enabled = true,
  bool obscureText = false,
  bool renderShadows = true,
  FilePathResolver? filePathResolver,
  ThemeData? theme,
})  : _platforms = platforms,
      super(
        enabled: enabled,
        obscureText: obscureText,
        renderShadows: renderShadows,
        filePathResolver: filePathResolver,
        theme: theme,
      );