two_factor_authentication property

bool? two_factor_authentication

Implementation

bool? get two_factor_authentication {
  try {
    if (rawData["two_factor_authentication"] is bool == false){
      return null;
    }
    return rawData["two_factor_authentication"] as bool;
  } catch (e) {
    return null;
  }
}
void two_factor_authentication=(bool? value)

Implementation

set two_factor_authentication(bool? value) {
  rawData["two_factor_authentication"] = value;
}