fromInt static method

LocalAlbumType fromInt(
  1. int value
)

Implementation

static LocalAlbumType fromInt(int value) {
  if (value == null) {
    return album;
  }
  if (value < values.length && value >= 0) {
    return values[value];
  }
  return album;
}