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