AssetTestStore constructor

AssetTestStore({
  1. String? testAssetIndex,
  2. List<String>? testAssets,
})

Implementation

AssetTestStore({
  this.testAssetIndex,
  this.testAssets,
})  : assert(testAssetIndex?.isNotEmpty == true ||
          testAssets?.isNotEmpty == true),
      assert(testAssetIndex?.isNotEmpty != true ||
          testAssets?.isNotEmpty != true);