fromValue static method

AuthyoButtonShape fromValue(
  1. Object? raw
)

Implementation

static AuthyoButtonShape fromValue(Object? raw) {
  final v = raw is int ? raw : int.tryParse('$raw');
  return values.firstWhere((e) => e.value == v, orElse: () => pill);
}