intoContent property
String
get
intoContent
Implementation
String get intoContent {
switch (this) {
case CarPartDirectionEnum.up:
case CarPartDirectionEnum.front:
case CarPartDirectionEnum.rightFront:
case CarPartDirectionEnum.leftFront:
case CarPartDirectionEnum.rightBack:
case CarPartDirectionEnum.leftBack:
case CarPartDirectionEnum.leftDev:
case CarPartDirectionEnum.leftProd:
return "introLeft";
case CarPartDirectionEnum.d45RightFront:
return "introRightFront";
case CarPartDirectionEnum.d45LeftFront:
return "introLeftFront";
case CarPartDirectionEnum.back:
case CarPartDirectionEnum.d45RightBack:
return "introRightBack";
case CarPartDirectionEnum.d45LeftBack:
return "introLeftBack";
}
}