fromGraphQLListUserTextStatusNullableToDartListUserTextStatusNullable function
Implementation
List<UserTextStatus?>
fromGraphQLListUserTextStatusNullableToDartListUserTextStatusNullable(
List<Object?> v,
) =>
v
.map(
(e) => fromGraphQLUserTextStatusNullableToDartUserTextStatusNullable(
e as String?,
),
)
.toList();