Cassette constructor

Cassette(
  1. dynamic folderPath,
  2. String name
)

Creates a new Cassette with the given name and folderPath.

Cassette cassette = Cassette('my_cassette', 'cassettes');

Implementation

Cassette(folderPath, this.name) : _filePath = '$folderPath/$name.json';