fromValue static method

LocalDateTime fromValue(
  1. int value
)

Implementation

static LocalDateTime fromValue(int value) {
  switch (value) {
    case 268435456:
      return LocalDateTime.min;
    default:
      throw ArgumentError.value(value);
  }
}