value property

String get value

Implementation

String get value {
  switch (this) {
    case InteractionMode.signIn:
      return 'signIn';
    case InteractionMode.signUp:
      return 'signUp';
    default:
      throw Exception("Invalid value");
  }
}