direction property

Axis direction
final

Direction in which data is read.

データを読み取る方向。

// Horizontal
id,name,age
1,John,20

// Vertical
id,1
name,John
age,20

->

{
  "id": 1,
  "name": "John",
  "age": 20
}

Implementation

final Axis direction;