getDirection static method
Convert EpubScrollDirection to FolioReader reader String
Implementation
static String getDirection(EpubScrollDirection direction) {
switch (direction) {
case EpubScrollDirection.VERTICAL:
return 'vertical';
case EpubScrollDirection.HORIZONTAL:
return 'horizontal';
case EpubScrollDirection.ALLDIRECTIONS:
return 'alldirections';
default:
return 'alldirections';
}
}