normal method

Future<void> normal()

Implementation

Future<void> normal() async {
  await _readSchemasJSON("resources/sequence/schemas.json")
      .then((String value) {
    _schemes = schemesFromJson(value);
    _size = _schemes.getData.length;
  });
}