getBiometricType static method

String? getBiometricType(
  1. BiometricType? type
)

Implementation

static String? getBiometricType(BiometricType? type) {
  switch (type) {
    case BiometricType.photo:
      return Type.photo;
    case BiometricType.video:
      return Type.video;
    default:
      return null;
  }
}