batchCallRecipientStatusNullableFromJson function
BatchCallRecipientStatus?
batchCallRecipientStatusNullableFromJson(
- Object? batchCallRecipientStatus, [
- BatchCallRecipientStatus? defaultValue
Implementation
enums.BatchCallRecipientStatus? batchCallRecipientStatusNullableFromJson(
Object? batchCallRecipientStatus, [
enums.BatchCallRecipientStatus? defaultValue,
]) {
if (batchCallRecipientStatus == null) {
return null;
}
return enums.BatchCallRecipientStatus.values
.firstWhereOrNull((e) => e.value == batchCallRecipientStatus) ??
defaultValue;
}