fromGraphQLListChatCallCredentialsNullableToDartListChatCallCredentialsNullable function

List<ChatCallCredentials?> fromGraphQLListChatCallCredentialsNullableToDartListChatCallCredentialsNullable(
  1. List<Object?> v
)

Implementation

List<ChatCallCredentials?>
fromGraphQLListChatCallCredentialsNullableToDartListChatCallCredentialsNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLChatCallCredentialsNullableToDartChatCallCredentialsNullable(
            e as String?,
          ),
    )
    .toList();