typeString property

String typeString

Implementation

String get typeString{
  switch(this){
    case ShareImageType.session:
      return "session";
    case ShareImageType.timeline:
      return "timeline";
    default:
      return "";
  }
}