displayName property
String
get
displayName
Implementation
String get displayName {
switch (this) {
case MobilePlatform.android:
return 'Android only';
case MobilePlatform.ios:
return 'iOS only';
case MobilePlatform.both:
return 'Both Android & iOS';
}
}