buyMeTitle property

String get buyMeTitle

Implementation

String get buyMeTitle {
  if (this == CarPartDirectionEnum.d45RightFront) {
    return LocaleKeys.rightFront45Buyme.trans;
  }
  if (this == CarPartDirectionEnum.d45LeftFront) {
    return LocaleKeys.leftFront45Buyme.trans;
  }
  if (this == CarPartDirectionEnum.d45RightBack) {
    return LocaleKeys.rightBack45Buyme.trans;
  }
  if (this == CarPartDirectionEnum.leftDev ||
      this == CarPartDirectionEnum.leftProd) {
    return LocaleKeys.registrationSticker.trans;
  }
  return LocaleKeys.leftBack45Buyme.trans;
}