toPlatformMediumType function

PlatformMediumType toPlatformMediumType(
  1. int? index
)

Implementation

PlatformMediumType toPlatformMediumType(int? index) {
  switch (index) {
    case 0:
      return PlatformMediumType.photo;
    case 1:
      return PlatformMediumType.video;
    case 2:
      return PlatformMediumType.pdf;
    case 3:
      return PlatformMediumType.text;
  }
  return PlatformMediumType.unknown;
}