fromInt static method

AccountSignUpType fromInt(
  1. int? val
)

Implementation

static AccountSignUpType fromInt(int? val) =>
    AccountSignUpType.values[validCheck(val ?? none.index)];